home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / write211.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1992-05-01  |  762b  |  26 lines

  1. echo off
  2. cls
  3. write "You can use write as simply a substitute for ECHO"
  4. pause
  5. cls
  6. write "Or, you can write in full color.  This is blinking white on red." 207
  7. pause
  8. cls
  9. write "You can center your text on the current line." 31 /c
  10. pause
  11. cls
  12. write "You can center your text on ANY line..." 78 /r10 /c
  13. pause
  14. cls
  15. write "Or, you can place your text anywhere you like!" /r4 /l34 15
  16. write "Or, you can place your text anywhere you like!" /r14 /l10 112
  17. write "Or, you can place your text anywhere you like!" /r20 /l25 75
  18. pause
  19. cls
  20. write "You can also use WRITE to display text files." 15 /c
  21. write "I'm going to display the documentation next.  If you" 14 /c
  22. write "would like to skip this part, press CTRL-C now." 14 /c
  23. pause
  24. write @write.doc 79
  25.  
  26.